/* Modern Footer Styles */
.ff-footer-widget {
    padding: 20px 0;
}
.ff-footer-widget p{
    color: #c5c5c5;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 25px;
}
.ff-footer-title {
    color: #f10d0d;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 1px;
}

.ff-footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #ff4757, #ff6b81);
}

/* Contact Section */
.ff-contact-item {
    margin-bottom: 20px;
}

.ff-contact-hotline, .ff-address, .ff-email {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ff-hotline-icon, .ff-address-icon, .ff-email-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ff4757;
    transition: all 0.3s ease;
}

.ff-contact-item:hover .ff-hotline-icon,
.ff-contact-item:hover .ff-address-icon,
.ff-contact-item:hover .ff-email-icon {
    background: #ff4757;
    color: #fff;
    transform: translateY(-2px);
}

.ff-hotline-content {
    flex: 1;
}

.ff-label {
    display: block;
    color: #c5c5c5;
    font-size: 15px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.ff-phone-link {
    color: #ff4757;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ff-phone-link:hover {
    color: #333;
}

.ff-address-content p {
    color: #c5c5c5;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
    letter-spacing: 1px;
}

.ff-email-link {
    color: #c5c5c5;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.ff-email-link:hover {
    color: #ff4757;
}

/* Social Media Section */
.ff-social-connect {
    margin-top: 30px;
}

.ff-social-title {
    font-size: 18px;
    color: #f10d0d;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.ff-social-icons {
    display: flex;
    gap: 12px;
}

.ff-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.ff-facebook {
    background: #3b5998;
}

.ff-instagram {
    background: #e1306c;
}

.ff-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer Links */
.ff-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ff-footer-link-item {
    margin-bottom: 12px;
}

.ff-footer-link {
    display: flex;
    align-items: center;
    color: #c5c5c5;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ff-footer-link i {
    font-size: 12px;
    margin-right: 8px;
    color: #ff4757;
    transition: transform 0.3s ease;
}

.ff-footer-link:hover {
    color: #ff4757;
    transform: translateX(5px);
}

.ff-footer-link:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ff-footer-widget {
        padding: 15px 0;
    }
    
    .ff-footer-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .ff-phone-link {
        font-size: 18px;
    }
}

/* Modern Bottom Footer Section */
.ff-footer-bottom {
    position: relative;
    background: #f8f9fa;
    padding: 10px 0;
    overflow: hidden;
}

.ff-footer-bottom-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 71, 87, 0.2) 50%, 
        transparent 100%
    );
}

.ff-copyright {
    display: flex;
    align-items: center;
}

.ff-copyright p {
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: #666;
    font-size: 16px;
    letter-spacing: 1px;
}

.ff-copyright-icon {
    color: #ff4757;
    margin-right: 4px;
    font-size: 14px;
}

.ff-copyright-year {
    font-weight: 500;
}

.ff-brand-link {
    color: #ff4757;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.ff-brand-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ff4757;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.ff-brand-link:hover {
    color: #333;
}

.ff-brand-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.ff-copyright-text {
    color: #666;
}

.ff-payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.ff-payment-title {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

.ff-payment-icons {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ff-payment-icons:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ff-payment-img {
    height: 25px;
    object-fit: contain;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .ff-footer-bottom {
        padding: 20px 0;
    }

    .ff-copyright p {
        justify-content: center;
        text-align: center;
        margin-bottom: 15px;
    }

    .ff-payment-methods {
        justify-content: center;
    }
    
    .ff-payment-title {
        display: none;
    }
}